Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pull-glob

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pull-glob

extended globs as pull-streams

  • 1.0.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

pull-glob

streaming extended glob.

use with pull-stream

examples

var pull = require('pull-stream')
var glob = require('pull-glob')

function glob_log (name, pattern) {
  pull(glob(pattern), pull.collect(function (err, ary) {
    if(err) throw err
    console.log('name:', name, 'pattern:', pattern)
    console.log(ary)
  })
}


glob_log('current dir', '.')
glob_log('js in current dir', '*.js')
glob_log('everything under current dir', '**')
glob_log('all js under current dir', '**/*.js')
glob_log('parent directories', '...')
glob_log('hidden files', '.../.*')
glob_log('available modules', '.../node_modules/*')
glob_log('local package files', '.../{package,component}.json')

stopping early

because this module uses pull-streams, it's lazy, so you can do queries like the following:

//find the first package.json in a parent directory.
pull(glob('.../package.json'), pull.take(1), log())

And you will retrive only the first item, and will not do any extra IO. This is hugely useful when doing a large traversal...

collect node_module tree

pull(
  glob('**/node_modules/*/package.json'),
  pull.collect(function (e, arr) {
    console.log(arr)
  })
)

License

MIT

FAQs

Package last updated on 29 Mar 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc